BigList Properties

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Syntax

C#
[SerializableAttribute]
public class BigList<T>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class BigList(Of T)
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class BigList

Type Parameters

T

The type exposes the following properties.

Public Properties

  NameDescription
Public propertyCount
Gets the number of items stored in the BigList. The indices of the items range from 0 to Count-1.
(Overrides ListBase<(Of <T>)>..::Count.)
Public propertyItem
Gets or sets an item in the list, by index.
(Overrides ListBase<(Of <T>)>..::Item[([Int32])].)

Explicit Interface Implementations

  NameDescription
Explicit interface implemetationPrivate propertyICollection<(Of <T>)>..::IsReadOnly (Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::IsSynchronized
Indicates whether the collection is synchronized.
(Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::SyncRoot
Indicates the synchronization object for this collection.
(Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIList..::IsFixedSize
Returns whether the list is a fixed size. This implementation always returns false.
(Inherited from ListBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIList..::IsReadOnly
Returns whether the list is read only. This implementation returns the value from ICollection<T>.IsReadOnly, which is by default, false.
(Inherited from ListBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIList..::Item
Gets or sets the value at a particular index in the list.
(Inherited from ListBase<(Of <T>)>.)

See Also